home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
internet
/
other
/
ka9q
/
nhclb120.zoo
/
pkvec.asm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1992-02-11
|
357 b
|
40 lines
include pmacros.h
extproc pkint
; pkvec - Packet driver receive call handler
pubproc pkvec
; save regs, making them available to pkint()
push es
push ds
push ax
push bx
push cx
push dx
push bp
push si
push di
getds
mov ds,ax
call pkint@
pop di
pop si
pop bp
pop dx
pop cx
pop bx
pop ax
pop ds
pop es
ret
pend pkvec
end